home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / AmiVoGL_MDEV.lha / cpfd.bat < prev    next >
DOS Batch File  |  1991-06-05  |  1KB  |  43 lines

  1. echo off
  2. rem
  3. rem  Copys vogl directories onto floppy disk
  4. rem
  5. rem  Usage: cd to vogl directory, then cpfd A:
  6. rem
  7. echo MAKING DIRECTORIES
  8. md %1\vogl
  9. md %1\vogl\src
  10. md %1\vogl\src\msfort
  11. md %1\vogl\src\sunfort
  12. md %1\vogl\drivers
  13. md %1\vogl\drivers\ibmpc
  14. md %1\vogl\examples
  15. md %1\vogl\hershey
  16. md %1\vogl\hershey\fonts
  17. md %1\vogl\hershey\docs
  18. md %1\vogl\hershey\src
  19. md %1\vogl\hershey\data
  20. md %1\vogl\docs
  21. echo "DONE MAKING DIRECTORIES"
  22. rem
  23. rem  Do the copying
  24. rem
  25. echo BEGIN COPYING
  26. copy *.* %1\vogl
  27. copy src\*.* %1\vogl\src
  28. copy src\msfort\*.* %1\vogl\src\msfort
  29. copy src\sunfort\*.* %1\vogl\src\sunfort
  30. rem
  31. copy drivers\*.* %1\vogl\drivers
  32. copy drivers\ibmpc\*.* %1\vogl\drivers\ibmpc
  33. rem
  34. copy examples\*.* %1\vogl\examples
  35. rem
  36. copy hershey\*.* %1\vogl\hershey
  37. copy hershey\src\*.* %1\vogl\hershey\src
  38. copy hershey\docs\*.* %1\vogl\hershey\docs
  39. copy hershey\data\*.* %1\vogl\hershey\data
  40. copy hershey\fonts\*.* %1\vogl\hershey\fonts
  41. copy docs\*.* %1\vogl\docs
  42. echo FINISHED COPYING
  43.